@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: Roboto;
}
.nav-container {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 85%;
  margin: 0px auto;
  /* border-radius: 10px; */
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  display: flex;
  align-items: center;
  padding: 25px;
  z-index: 1000;
  justify-content: space-between;
    background: rgba(0, 0, 0, 0.50); 
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

}
.logo-box {
  width: 100px;
  height: 50px;
}
.img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nv-logo-img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items:center;
  list-style: none;
}
.nav-links > li > a {
  text-decoration: none;
  color: lightgray;
  margin: 0 16px;
  padding: 15px 0;
}
.nav-btn{
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  float: right;
}
.burgr-icon{
  width: 30px;
  height: 30px;
  display: none;
  cursor: pointer;
}

.nav-btn > button{
  font-size: 1rem;
  color: white;
  border: none;
  border-radius: 3px;
  background-color: #c90e0e;
  cursor: pointer;
  padding: 9px 18px;
  transition: all 0.3s ease;   
}

.nav-btn > button:hover{
  transform: scale(1.08);      
  background-color: #970505;
  box-shadow: 0 8px 20px rgba(189, 189, 189, 0.2); 
}

.about-li{
  position: relative;
}
.drp-down{
  display: none;
  position: absolute;
  top: 30px;
  left: 14px;
  right: 0;
  bottom: 0;
}
.drp-down > li{
  list-style: none;
  background-color: black;
  width: 240px;
}
.drp-down > li > a{
  padding: 20px;
  display:block;
  color: white;
  text-decoration: none;
}
.about-li:hover > .drp-down{
 display: block;
}
.mrgn{
  margin-left: 5px;
}


.nav-links > li > a {
  text-decoration: none;
  color: lightgray;
  margin: 0 16px;
  padding: 15px 0;
  transition: color 0.3s ease; 
}

.nav-links > li > a:hover {
   color: #c90e0e;
}


/* Dropdown links hover effect */
.drp-down > li > a {
  padding: 20px;
  display: block;
  color: white;
  text-decoration: none;
  transition: color 0.3s ease; 
}

.drp-down > li > a:hover {
  color: #c90e0e; 
}
.nav-links > li:first-child > a {
  background-color: #332f30;
  color: white;
  padding: 15px 20px;
  border-radius: 5px;
}